home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 16 / PC Actual CD 16.iso / autocad / R14701.DXR / 00020_s-ButtonScoreScript.ls < prev    next >
Encoding:
Text File  |  1997-04-24  |  365 b   |  18 lines

  1. on mouseDown
  2.   global gScript
  3.   set tCurrButton to getaProp(the pButtonObjectList of gScript, rollOver())
  4.   if voidp(tCurrButton) then
  5.     exit
  6.   end if
  7.   mButtonDown(tCurrButton)
  8. end
  9.  
  10. on mouseUp
  11.   global gScript
  12.   set tCurrButton to getaProp(the pButtonObjectList of gScript, rollOver())
  13.   if voidp(tCurrButton) then
  14.     exit
  15.   end if
  16.   mButtonUp(tCurrButton)
  17. end
  18.